版权声明:本文为博主原创文章,转载请注明出处:http://blog.jerkybible.com/2013/11/16/2013-11-16-CODE 74 Spiral Matrix II/
Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order.
For example,
Given n = 3
,
You should return the following matrix: [
[ 1, 2, 3 ],
[ 8, 9, 4 ],
[ 7, 6, 5 ]
]
|
|